home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / games / strategy / xconq.lha / xconq / lib / machine.per < prev    next >
Encoding:
Text File  |  1995-03-06  |  25.2 KB  |  623 lines

  1. Xconq 0 -+---- Standard period that gets compiled in
  2. Period 0
  3.  
  4. "WW II ca 1945" period-name
  5.  
  6. "standard" font-name
  7.  
  8. ;100 scale
  9.  
  10. "i" "infantry" "marches around and captures things" utype
  11. "a" "armor" "faster than infantry, limited to open terrain" utype
  12. "f" "fighter" "interceptor to get those nasty bombers" utype
  13. "b" "bomber" "long range aircraft, carries infantry and bombs" utype
  14. "d" "destroyer" "fast, cheap, and sinks subs" utype
  15. "s" "submarine" "sneaks around and sinks ships" utype
  16. "t" "troop transport" "carries infantry and armor across the pond" utype
  17. "C" "carrier" "carries fighters and bombers around" utype
  18. "B" "battleship" "the most powerful ship" utype
  19. "N" "atomic bomb" "leveler of cities (and anything else)" utype
  20. "/" "base" "airstrip plus port" utype
  21. "*" "town" "smaller than a city" utype
  22. "@" "city" "capital of a side" utype
  23.  
  24. "F" "fuel" "basic motive power" rtype
  25. "A" "ammo" "generic hitting capability" rtype
  26.  
  27. "." "sea" "sky blue" ttype
  28. "," "shallows" "cyan" ttype
  29. "=" "swamp" "yellowgreen" ttype
  30. "~" "desert" "yellow" ttype
  31. "+" "plains" "green" ttype
  32. "%" "forest" "forest green" ttype
  33. "^" "mountains" "sienna" ttype
  34. "_" "ice" "white" ttype
  35. ":" "vacuum" "black" ttype
  36.  
  37. true [ vacuum ] dark
  38.  
  39. t* t* nuked  ; most terrain won't actually change
  40. desert [ plains forest ] nuked
  41. mountains ice nuked
  42.  
  43. [   0  17   0  20  20  20  93  99  0 ] t* min-alt
  44. [  16  20  20  93  93  93  99 100  0 ] t* max-alt
  45. [  20  40   0   0  15  80   0   0  0 ] t* min-wet
  46. [ 100 100  40  15  80 100 100 100  0 ] t* max-wet
  47.  
  48. ice edge-terrain
  49.  
  50. [ / * @ ] "cities" define
  51. [ * @ ] "makers" define
  52. [ i a ] "ground" define
  53. [ f b ] "aircraft" define
  54. [ d s t C B ] "ship" define
  55. [ i a f b d s t C B N ] "movers" define
  56. [ sea shallows ] "water" define
  57. [ plains forest desert mountains ] "land" define
  58.  
  59. true cities named
  60. true [ C B N ] named
  61. [ 1 5 25 ] [ / * @ ] territory
  62.  
  63. 1 @ in-country
  64. 5 * in-country
  65. 200 * density
  66. @ first-unit
  67. i first-product
  68. 20 land * favored
  69. 40 plains * favored
  70. 100 plains @ favored
  71. 22 country-min-distance
  72. 48 country-max-distance
  73.  
  74. ; no disasters
  75.  
  76. [ 4 7 8 16 10 16 12 30 40 20 ] movers @ make
  77. [ 4 7 8 16 10 16 12 30 40 20 ] movers * make
  78. [ 3 5 ] / ground make
  79. true [ * @ ] maker
  80. 20 u* startup
  81. 300 N research   ; that's 3x basic time
  82. ; no special resources to make
  83. 1 u* [ * @ ] repair
  84. 3 u* / repair
  85. 10 / / repair
  86. 10 [ C B ] [ C B ] repair
  87. 10 [ * @ ] i repair
  88. 3 / i repair
  89. ; infantry should maybe repair cities?
  90.  
  91. 1 fuel ground produce
  92. 2 fuel a produce ; this is less realistic, but problems otherwise
  93. [ 10 20 50 ] fuel cities produce
  94. [  5 10 20 ] ammo cities produce
  95. 100 [ plains forest ] i productivity
  96. 100 plains a productivity   ; in this case "plains" = "gas stations"
  97. [ 100 50 20 20 ] land / productivity ; one arg must be a scalar...
  98. [ 100 50 20 20 ] land * productivity
  99. [ 100 50 20 20 ] land @ productivity
  100.  
  101. [ 6 10 18 36 100 100 200 240 200 1 200 500 900 ] fuel u* storage
  102. [ 6  4  3  3  20  10  20  40  40 1 100 200 400 ] ammo u* storage
  103. 1 fuel i consume
  104. ; 1 fuel ship consume
  105. 3 fuel f consume   ; this causes problems for carriers
  106. 2 fuel b consume
  107. 0 [ f b ] consume-as-occupant
  108.  
  109. -1 r* [ i f ] out-length
  110.  
  111. [ 1 2 9 6 3 3 2 4 4 1 ] movers speed
  112.  
  113. 0 land i moves
  114. 0 [ plains desert ] a moves
  115. 0 t* aircraft moves
  116. 0 water ship moves
  117. 2 shallows [ C B ] moves
  118. 0 t* N moves  ; team of scientists can take bomb anywhere
  119. 0 land cities moves  ; looks strange, but needed to define allowable places
  120.  
  121. 1 fuel movers to-move
  122. 0 fuel [ N ] to-move   ; infantry doesn't need extra to move, but cause other problems
  123.  
  124. 1 [ i N ] b capacity
  125.  
  126. 1 u* volume
  127. 1 ground volume
  128. 4 [ d s ] volume
  129. 6 [ t C B ] volume
  130. 2 b volume
  131. 6 ground t capacity
  132. 1 b hold-volume
  133. 6 t hold-volume
  134. 10 C hold-volume
  135. 20 / hold-volume
  136. 40 * hold-volume
  137. 80 @ hold-volume
  138. 1 ship t capacity
  139. 50 ship t alter-mobility
  140. [ 6 2 ] [ f b ] C capacity
  141. 2 u* / capacity
  142. 4 [ f b ] / capacity
  143. 10 u* * capacity
  144. 20 u* @ capacity
  145. 0 cities cities capacity
  146. 9 u* f enter-time  ; aircraft can't sortie again until next turn
  147. 6 u* b enter-time
  148.  
  149. 0 s visibility
  150. 10 N visibility
  151. true [ * @ ] always-seen
  152. 3 @ see-range
  153.  
  154. [ 1 1 1 2 3 2 3 4 8 1 10 20 40 ] u* hp
  155. [ 0 0 0 1 1 1 2 2 2 0  5 10 20 ] u* crippled  ; 50% of hp usually
  156.  
  157. [  50  40  20  15  20  20  30  20   9  40  80  60  40 ] u* i hit
  158. [  60  50  30  30  30  20  30  20  20  50  90  70  50 ] u* a hit
  159. [  15  25  60  70  20  30  20  50  40  80 100 100 100 ] u* f hit
  160. [  20  20  10   9  30  50  50  70  60  50  90  95  99 ] u* b hit
  161. [   5   5  10   5  60  70  60  40  20   0  99  90  80 ] u* d hit
  162. [   0   0  10   5  40  10  60  40  50   0   0   0   0 ] u* s hit
  163. [  20   5  10   5  50  50  40  30   9   0   0   0   0 ] u* t hit
  164. [  30  20  40  10  30  30  40  20  20   0   0   0   0 ] u* C hit
  165. [  50  50  50  20  70  50  90  50  90   0 100 100 100 ] u* B hit
  166. [ 200 200 200 200 200 200 200 200 200   0 200 200 200 ] u* N hit
  167. [  10  10  20  20  20  20  30  20  20   0   0   0   0 ] u* / hit
  168. [  30  20  50  40  40   0  30  20  20   0   0   0   0 ] u* * hit
  169. [  50  40  70  60  50   0  30  20  50   0   0   0   0 ] u* @ hit
  170.  
  171. 1 u* u* damage
  172. 2 cities a damage
  173. 2 ship b damage
  174. 2 [ / * ] b damage
  175. 3 @ b damage
  176. 2 s d damage
  177. 3 ship s damage
  178. 4 B s damage
  179. 2 u* B damage
  180. [ 3 4 ] [ * @ ] B damage
  181. 60 u* N damage
  182.  
  183. -50 neutrality
  184.  
  185. false N can-counter
  186.  
  187. true N self-destruct
  188.  
  189. [ 70 50 30 ] cities i capture
  190. [ 90 70 50 ] cities a capture
  191. 50 N i capture
  192. true i cities bridge  ; infantry can capture cities even on water.
  193.  
  194. 50 movers cities protect  ; cities offer some protection to occupants
  195. 10 cities a protect        ; armor protect the cities housing them.
  196.               ; can't make this too large or city can be
  197.               ; invulnerable.
  198. 5 cities i protect      ; same for infantry.
  199.  
  200. true u* changes-side  ; equipment is indifferent to its fate
  201. false i changes-side  ; but armies have some loyalty
  202. true u* neutral
  203. false i neutral
  204.  
  205. 1 ammo u* hits-with
  206. 1 ammo u* hit-by
  207.  
  208. "defeats" ground destroy-message
  209. "sinks" ship destroy-message
  210. "shoots down" [ f b ] destroy-message
  211. "flattens" cities destroy-message
  212.  
  213. true movers can-disband
  214. true / can-disband
  215.  
  216. ; help for machine strategy
  217. [ 200 150 100 80 0 0 0 0 0 0 5 50 50 ] u* attack-worth
  218. [ 200 150 200 150 5 0 0 0 1 0 5 50 50 ] u* defense-worth
  219. [ 200  50 100 100 0 0 0 0 0 0 10 50 50 ] u* explore-worth
  220.  
  221. begin{notes}
  222. This period is the default built-in set of period parameters.  It
  223. represents units of about 1945, from infantry to atomic bombs.  This is
  224. the most familiar, which makes it easier to play, but also more controversial,
  225. since historians have many conflicting theories about which kinds of
  226. units were most effective.
  227.  
  228. Infantry.  The infantry division is the slowest of units, but it can go almost
  229. anywhere.  It is also quick to produce.  Infantry is the staple of
  230. campaigns - a little boring perhaps, but essential to success.
  231.  
  232. Armor.  The armor division is highly mobile and hits hard.  Unfortunately,
  233. it is limited to operating in open terrain - plains and desert.  It also
  234. takes longer to produce.  Armor can last twice as long in the 
  235. desert as infantry.  Both armor and infantry can
  236. assault and capture cities; they are the only units that can do so.
  237.  
  238. Fighters.  A fighter is a squadron or wing of high-speed armed aircraft.
  239. Their fuel supply can be gotten only at units, towns, and bases, so they
  240. must continually be taking off and landing.  Fighters are not too effective
  241. against ground units or ships, but they eat bombers for lunch.  Fighters
  242. are very good for reconnaisance - important in a game where you can't always
  243. see the enemy moving!
  244.  
  245. Bomber groups.  Bombers are very powerful, since they can seriously damage
  246. or even flatten cities.  The loss rate in such activities is high, so they're
  247. not a shortcut to victory!
  248.  
  249. Destroyers.  Destroyers are fast small ships for both exploration and
  250. anti-submarine activities.
  251.  
  252. Submarines.  The favorite food of submarines is of course merchant shipping
  253. and troopships, and they can sink troop transports with one blow.
  254. Subs are also invisible, but they are vulnerable to destroyers and aircraft.
  255.  
  256. Troop transports.  This is how ground units get across the sea.  They can
  257. defend themselves against ships and aircraft, but are basically vulnerable.
  258. They're not very fast either.
  259.  
  260. Aircraft carriers.  Compensates for the fighter's limited range by providing
  261. a portable airport.  Carriers themselves are sitting ducks, particularly
  262. with respect to aircraft.  Fighter patrols are mandatory.
  263.  
  264. Battleships.  The aptly named "Dread Naught" has little to fear from other
  265. units of this period.  Subs may sink them with enough effort, and a group
  266. of bombers and fighters are also deadly, but with eight hit points to start,
  267. a battleship can usually survive long enough to escape.  Battleships are very
  268. effective against cities and armies, at least the ones on the coast.
  269.  
  270. Atomic bombs.  The Final Solution; but they are not easy to use.  A bomb
  271. takes a long time to produce, moves very slowly by itself, and is easily
  272. destroyed by other units.  The plus side is instant destruction for any unit
  273. of any size!  Bombs are imagined to be transported by a team of scientists,
  274. and can go on any sort of terrain without running out of supplies.
  275.  
  276. Bases.  To simplify matters, this can serve as a camp, airbase, and port.
  277. Bases cannot build units, although they can repair some damage.
  278.  
  279. Towns.  Towns are the staple of territory.  They can build, repair, produce
  280. fuel and ammo, and serve as a safe haven for quite a few units.
  281.  
  282. Cities.  Cities are very large, powerful, and well defended.  They are
  283. basically capital cities, or something in a comparable range.  (New York
  284. and San Francisco are cities, Salt Lake City and San Antonio are towns.)
  285. A city is worth five towns, territory-wise.
  286.  
  287. Current thinking about optimal strategy for this period differs.  In general,
  288. blitzkrieg works, and can win the game in a hurry.  The problem is to
  289. muster enough force before striking.  One full troop transport is not
  290. enough; the invasion will melt away like ice cream on a hot sidewalk, unless
  291. reinforcements (either air or land) show up quickly.  Air cover is very
  292. important.  While building up an invasion force, airborne assaults using
  293. bombers and infantry can provide useful diversions, although it can be
  294. wasteful of bombers.  Human vs human games on the default map generally
  295. last about 100 turns, usually not enough time or units to build atomic
  296. bombs or battleships, and not a big enough map to really need carriers
  297. (although bases for staging are quite useful.)
  298. end{notes}
  299.  
  300. clear-side-names
  301.  
  302. ; The more significant countries of the modern world
  303.  
  304. "American" sname "Canadian" sname "Mexican" sname "Guatemalan" sname
  305. "Honduran" sname "Sandinista" sname "Costa Rican" sname "Panamanian" sname
  306. "Colombian" sname "Ecuadorean" sname  "Peruvian" sname "Chilean" sname
  307. "Argentinian" sname "Uruguayan" sname "Paraguayan" sname "Brazilian" sname
  308. "Bolivian" sname "Guyanan" sname "Venezuelan" sname "Cuban" sname
  309. "Haitian" sname "Jamaican" sname "Irish" sname "British" sname
  310. "Portuguese" sname "Spanish" sname "French" sname "Italian" sname
  311. "Albanian" sname "Greek" sname "Turk" sname "Bulgarian" sname
  312. "Cypriot" sname "Maltese" sname "Icelander" sname
  313. "Rumanian" sname "Soviet" sname "Finnish" sname "Swedish" sname
  314. "Polish" sname "Czech" sname "Hungarian" sname "Austrian" sname
  315. "German" sname "Swiss" sname "Belgian" sname "Dutch" sname
  316. "Danish" sname "Norwegian" sname "Moroccan" sname "Mauritanian" sname
  317. "Senegalese" sname "Guinean" sname "Liberian" sname "Ghanan" sname
  318. "Nigerian" sname "Cameroon" sname "Gabonese" sname "Zairean" sname
  319. "Angolan" sname "Namibian" sname "South African" sname "Botswanan" sname
  320. "Mozambiquan" sname "Zimbabwean" sname "Zambian" sname "Tanzanian" sname
  321. "Rwandan" sname "Djiboutian" sname "Madagascaran" sname
  322. "Kenyan" sname "Ugandan" sname "Somalian" sname "Ethiopian" sname
  323. "Sudanese" sname "Egyptian" sname "Libyan" sname "Tunisian" sname
  324. "Algerian" sname "Syrian" sname "Lebanese" sname "Israeli" sname
  325. "Jordanian" sname "Saudi" sname "Yemeni" sname "Omani" sname
  326. "Kuwaiti" sname "Iraqi" sname "Iranian" sname "Afghan" sname
  327. "Pakistani" sname "Indian" sname "Nepalese" sname "Burmese" sname
  328. "Vietnamese" sname "Kampuchean" sname "Laotian" sname
  329. "Siamese" sname "Malaysian" sname "Indonesian" sname "Australian" sname
  330. "Micronesian" sname "Fijian" sname "Tongan" sname "Samoan" sname
  331. "Tahitian" sname "New Zealander" sname
  332. "Papuan" sname "Polynesian" sname "Filipino" sname "Japanese" sname
  333. "Korean" sname "Chinese" sname "Mongolian" sname "Tibetan" sname
  334.  
  335. ; The following names are derived from the Rand-McNally International Atlas
  336. ; and from their US road atlas.  Although nominally these could end up on
  337. ; any sort of unit, they are likely to be attached to city-like units only.
  338.  
  339. clear-unit-names
  340.  
  341. ; Soviet Union  
  342. "Uglegorsk" uname "Taganrog" uname "Kuzemino" uname "Igodovo" uname 
  343. "Izhevsk" uname "Leninskoye" uname "Zvenigorod" uname "Faustovo" uname 
  344. "Tokma" uname "Bolotnoje" uname "Pudino" uname "Predivinsk" uname 
  345. "Gotoputovo" uname "Stupino" uname 
  346. ; Japan  
  347. "Toyooka" uname "Kobayashi" uname "Kamiyahagi" uname "Fukude" uname 
  348. ; China  
  349. "Dandong" uname "Xingtai" uname "Xiaojiagang" uname "Wushu" uname 
  350. "Wutangjie" uname "Qingfeng" uname "Dushikou" uname "Huilong" uname 
  351. "Linyi" uname "Miaoyang" uname "Xinbo" uname "Bugt" uname 
  352. ; Indochina  
  353. "Tan-an" uname "Ban Khlong Kua" uname "Bo Phloi" uname "Thot-not" uname
  354. "Herbertabad" uname "Mong Pawn" uname "Roi Et" uname
  355. ; Indonesia  
  356. "Butong" uname "Lubukbertubung" uname "Moutong" uname "Gimpu" uname 
  357. "Waingapu" uname "Sindangbarang" uname "Kualakapuas" uname "Bongka" uname 
  358. "Salimbatu" uname "Bonggaw" uname "Baing" uname "Grokgak" uname 
  359. ; India  
  360. "Bap" uname "Meerut" uname "Harda" uname "Garwa" uname 
  361. "Digboi" uname "Kurnool" uname "Nirmal" uname "Coondapoor" uname 
  362. "Tetulbaria" uname "Maheshwar" uname "Paramagudi" uname "Bhakkar" uname 
  363. "Mungaoli" uname "Shorapur" uname "Channapatna" uname "Chilaw" uname 
  364. ; Middle East and Central Asia  
  365. "Bajandalaj" uname "Cogt-Ovoo" uname "Un't" uname "Ich-Uul" uname 
  366. "Yazd" uname "Samarkand" uname "Mashhad" uname "Chah Bahar" uname 
  367. "Jubbah" uname "Al-'Awsajiyah" uname "Kifri" uname "Kashgar" uname 
  368. "Chundzha" uname "Ushtobe" uname "Dzaamar" uname "Wadi Musa" uname 
  369. "Bogustan" uname "Gakuch" uname 
  370. ; Africa  
  371. "Pibor Post" uname "Umm Digulgulaya" uname "Umm Shalil" uname "Buzaymah" uname 
  372. "Gedo" uname "North Horr" uname "Todenyang" uname "Madadi" uname 
  373. "Ngetera" uname "Ouadda" uname "Mazoula" uname "Tiglit" uname 
  374. "Gummi" uname "Gbarnga" uname "Burutu" uname "Bafwabalinga" uname 
  375. "Goonda" uname "Ankoroka" uname "Vryburg" uname "Matuba" uname 
  376. "Bakouma" uname "El Idrissia" uname "Agadir" uname "Nungwe" uname 
  377. "Bunianga" uname "Ngali" uname "Nguiroungou" uname "Otukpa" uname 
  378. "Hell-Ville" uname "Morafenobe" uname "Tongobory" uname "Farafangana" uname 
  379. "Mungbere" uname "Haco" uname "Barbar" uname "Oulessebougou" uname
  380. ; Australia  
  381. "Nookawarra" uname "Bunbury" uname "Buckleboo" uname "Breeza Plains" uname 
  382. "Mistake Creek" uname "Boolaloo" uname "Yarloop" uname "Dubbo" uname 
  383. "Bushy Park" uname "Old Cork" uname "Cessnock" uname "Wagga Wagga" uname 
  384. "Mungar Junction" uname "Koolywirtie" uname "Wonthaggi" uname
  385. "Oatlands" uname "Bindebango" uname "Alice Springs" uname
  386. ; New Guinea  
  387. "Kwatisore" uname "Finschhafen" uname "Yobi" uname "Rumahtinggih" uname 
  388. ; USA  
  389. ; AL  
  390. "New Hope" uname "Hackleburg" uname 
  391. ; AK  
  392. "Kaktovik" uname "Fort Yukon" uname 
  393. ; AZ  
  394. "Benson" uname "Gila Bend" uname "Turkey Flat" uname "Tuba City" uname  
  395. "Wide Ruins" uname 
  396. ; AR  
  397. "Metalton" uname "Oil Trough" uname "Hackett" uname
  398. ; CA  
  399. "Burnt Ranch" uname "Calexico" uname "Eel Rock" uname "Gilroy" uname 
  400. "Joshua Tree" uname "Milpitas" uname "Mormon Bar" uname "Pumpkin Center" uname 
  401. "Death Valley Junction" uname "Toms Place" uname
  402. "Pinole" uname "Petaluma" uname 
  403. "Scotts Valley" uname "Whiskeytown" uname "Leucadia" uname "Lompoc" uname
  404. "Granada Hills" uname
  405. ; CO  
  406. "Las Animas" uname "Silver Plume" uname 
  407. ; CT  
  408. "Upper Stepney" uname "Moosup" uname "Danbury" uname
  409. ; FL  
  410. "Yeehaw Junction" uname "Big Pine Key" uname 
  411. "Panacea" uname "Wewahitchka" uname "Estiffanulga" uname 
  412. ; GA  
  413. "Dixie Unameion" uname "Fowlstown" uname "Dacula" uname "Americus" uname 
  414. ; HW  
  415. "Laupahoehoe" uname 
  416. ; ID  
  417. "Malad City" uname "Kootenai" uname 
  418. ; IL  
  419. "Farmer City" uname "Aroma Park" uname "Goreville" uname "Illiopolis" uname  
  420. "Mascoutah" uname "Metamora" uname "Metropolis" uname "New Boston" uname  
  421. "Pontoon Beach" uname "Romeoville" uname "Teutopolis" uname  
  422. ; IN  
  423. "Etan Green" uname "French Lick" uname "Loogootee" uname "Needmore" uname  
  424. "Ogden Dunes" uname "Oolitic" uname "Star City" uname  
  425. ; IA  
  426. "Coon Rapids" uname "Correctionville" uname "Grundy Center" uname
  427. "Lost Nation" uname "Ossian" uname "Sac City" uname  
  428. ; KA  
  429. "Countryside" uname "Mankato" uname "Pretty Prairie" uname  "Greeley" uname
  430. "Grouse Creek" uname
  431. ; KY  
  432. "Big Clifty" uname "Cloverport" uname "Druid Hills" uname "Fancy Farm" uname 
  433. "Hardburly" uname "Hardshell" uname "Horse Cave" uname "Pleasureville" uname 
  434. "Science Hill" uname "Sublimity City" uname "Watergap" uname 
  435. ; LA  
  436. "Bayou Goula" uname "Cut Off" uname "Hackberry" uname "Lutcher" uname 
  437. "Waggaman" uname 
  438. ; ME  
  439. "Veazie" uname "Madawaska" uname 
  440. ; MD  
  441. "Bestgate" uname "College Park" uname "Frostburg" uname "Pocomoke City" uname 
  442. "Port Deposit" uname "Pumphrey" uname "Tammany Manor" uname
  443. "Weems Creek" uname "Whiskey Bottom" uname "Hack Point" uname
  444. ; MA  
  445. "Assinippi" uname "Buzzards Bay" uname "Dorothy Pond" uname "Hopkinton" uname 
  446. "Housatonic" uname "Pigeon Cove" uname "Swampscott" uname "Gloucester" uname
  447. "Hyannis Port" uname "Ipswich" uname "Boxford" uname
  448. ; MI  
  449. "Bad Axe" uname "Brown City" uname "Cassopolis" uname "New Buffalo" uname 
  450. "Petoskey" uname "Ishpeming" uname "Ypsilanti" uname "Saugatuck" uname 
  451. ; Michigan UP (from Sandra Loosemore)  
  452. "Skanee" uname "Bruce Crossing" uname "Baraga" uname "Germfask" uname 
  453. "Assinins" uname "Tapiola" uname "Gaastra" uname "Bete Grise" uname 
  454. ; MN  
  455. "Ada" uname "Blue Earth" uname "Brainerd" uname "Eden Valley" uname  
  456. "Lino Lakes" uname "New Prague" uname "Sleepy Eye" uname "Waconia" uname  
  457. ; MS  
  458. "Bogue Chitto" uname "Buckatunna" uname "Guntown" uname "Picayune" uname 
  459. "Red Lick" uname "Senatobia" uname "Tie Plant" uname "Yazoo City" uname  
  460. ; MO  
  461. "Bourbon" uname "Doe Run" uname "Hayti" uname "Humansville" uname 
  462. "Lutesville" uname "Moberly" uname "New Madrid" uname "Peculiar" uname 
  463. "Sappington" uname "Vandalia" uname  
  464. ; MT  
  465. "Big Sandy" uname "Hungry Horse" uname 
  466. "Kalispell" uname  "East Missoula" uname
  467. ; NE
  468. "Hershey" uname "Loup City" uname 
  469. "Minatare" uname "Wahoo" uname  "Grainfield" uname
  470. ; NV  
  471. "Winnemucca" uname "Tonopah" uname "Jackpot" uname  
  472. ; NH  
  473. "Littleton" uname "Winnisquam" uname  
  474. ; NJ  
  475. "Cheesequake" uname "Freewood Acres" uname
  476. "Forked River" uname "Hoboken" uname "Succasunna" uname  
  477. "Maple Shade" uname "New Egypt" uname "Parsippany" uname "Ship Bottom" uname  
  478. ; NM  
  479. "Adobe Acres" uname "Cloudcroft" uname "Ruidoso" uname "Toadlena" uname  
  480. "Los Padillos" uname "Ojo Caliente" uname 
  481. ; NY  
  482. "Angola on the Lake" uname "Podunk" uname "Chili Center" uname
  483. "Aquebogue" uname "Muttontown" uname "Hicksville" uname 
  484. "Hoosick Falls" uname "Nyack" uname
  485. "Painted Post" uname "Peekskill" uname "Portville" uname  
  486. "Ronkonkoma" uname "Wappingers Falls" uname 
  487. "Sparrow Bush" uname "Swan Lake" uname
  488. ; NC  
  489. "Altamahaw" uname
  490. "Biltmore Forest" uname "Boger City" uname "Granite Quarry" uname  
  491. "High Shoals" uname "Lake Toxaway" uname
  492. "Scotland Neck" uname "Hiddenite" uname 
  493. "Mocksville" uname "Yadkinville" uname "Nags Head" uname 
  494. "Kill Devil Hills" uname "Rural Hall" uname  
  495. ; ND  
  496. "Cannon Ball" uname "Hoople" uname "Zap" uname  
  497. ; OH  
  498. "Academia" uname "Arcanum" uname "Blacklick Estates" uname "Blue Ball" uname  
  499. "Crooksville" uname "Dry Run" uname "Flushing" uname "Gratis" uname  
  500. "Lithopolis" uname "Mingo Junction" uname "Newton Falls" uname
  501. "New Straitsville" uname "Painesville" uname "Pepper Pike" uname 
  502. "Possum Woods" uname "Sahara Sands" uname  
  503. ; OK  
  504. "Bowlegs" uname "Broken Arrow" uname "Fort Supply" uname "Drumright" uname 
  505. "Dill City" uname "Okay" uname "Hooker" uname  
  506. ; OR  
  507. "Condon" uname "Happy Valley" uname "Drain" uname "Junction City" uname 
  508. "Molalla" uname "Philomath" uname "Tillamook" uname "Wankers Corner" uname
  509. ; PA  
  510. "Atlasburg" uname "Beaver Meadows" uname "Birdsboro" uname "Daisytown" uname 
  511. "Fairless Hills" uname "Fairchance" uname "Kutztown" uname "Erdenheim" uname 
  512. "Hyndman" uname "Pringle" uname "Scalp Level" uname "Slickville" uname 
  513. "Zelienople" uname "Sugar Notch" uname "Toughkenamon" uname "Throop" uname 
  514. "Tire Hill" uname "Wormleysburg" uname "Oleopolis" uname
  515. ; RI  
  516. "Woonsocket" uname "Pawtucket" uname
  517. ; SC  
  518. "Due West" uname "Ninety Six" uname 
  519. "Travelers Rest" uname "Ware Shoals" uname  
  520. ; SD  
  521. "Deadwood" uname "Lower Brule" uname 
  522. "New Underwood" uname "Pickstown" uname 
  523. "Plankinton" uname "Tea" uname "Yankton" uname  
  524. ; TN  
  525. "Berry's Chapel" uname "Bulls Gap" uname "Cornersville" uname "Counce" uname 
  526. "Gilt Edge" uname "Grimsley" uname "Malesus" uname "Soddy-Daisy" uname  
  527. ; TX  
  528. "Bastrop" uname "New Braunfels" uname "Harlingen" uname "Dimock" uname 
  529. "Devils Elbow" uname "North Zulch" uname "Llano" uname "Fort Recovery" uname 
  530. "Arp" uname "Bovina" uname "Cut and Shoot" uname "College Station" uname 
  531. "Grurer" uname "Iraan" uname "Leming" uname "Harlingen" uname 
  532. "Muleshoe" uname "Munday" uname "Kermit" uname "La Grange" uname 
  533. "Ropesville" uname "Wink" uname "Yoakum" uname "Sourlake" uname  
  534. ; UT  
  535. "Delta" uname "Moab" uname "Nephi" uname "Loa" uname 
  536. "Moroni" uname "Orem" uname "Tooele" uname "Sigurd" uname 
  537. ; VT  
  538. "Bellows Falls" uname "Chester Depot" uname "Winooski" uname  
  539. ; VA  
  540. "Accotink" uname "Ben Hur" uname "Ferry Farms" uname "Disputanta" uname 
  541. "Dooms" uname "Sleepy Hollow" uname "Max Meadows" uname "Goochland" uname 
  542. "Rural Retreat" uname "Sandston" uname "Stanleytown" uname
  543. "Willis Wharf" uname "Stuarts Draft" uname 
  544. ; WA  
  545. "Black Diamond" uname "Carnation" uname "Cle Elum" uname "Cosmopolis" uname 
  546. "Darrington" uname "Enumclaw" uname "Forks" uname "Goose Prairie" uname 
  547. "Navy Yard City" uname "La Push" uname "Soap Lake" uname "Walla Walla" uname 
  548. "Sedro Woolley" uname "Pe Ell" uname "Ruston" uname  
  549. ; WV  
  550. "Barrackville" uname "Pocatalico" uname "Fort Gay" uname "Big Chimney" uname 
  551. "Nutter Fort" uname "Hometown" uname "Nitro" uname "Triadelphia" uname 
  552. "Star City" uname  
  553. ; WI  
  554. "Combined Lock" uname "Coon Valley" uname "Black Earth" uname
  555. "New Holstein" uname "Little Chute" uname "Wisconsin Dells" uname
  556. "Random Lake" uname "Sheboygan" uname "Nauwatosa" uname  
  557. ; WY  
  558. "East Thermopolis" uname "Fort Washakie" uname "Paradise Valley" uname 
  559. ; Canada  
  560. "Sexsmith" uname "Squamish" uname "Fort Qu'Appelle" uname "Flin Flon" uname 
  561. "Moose Jaw" uname "Grand-Mere" uname "Great Village" uname "Pugwash" uname 
  562. "Chiliwack" uname "Cranbery Portage" uname  
  563. "Moosonee" uname "Joe Batt's Arm" uname "St.-Polycarpe" uname
  564. "Crabtree Mills" uname "Copper Cliff" uname "Uxbridge" uname 
  565. "Penetanguishene" uname "Boger City" uname "Drumheller" uname 
  566. "Port Blandford" uname "Hamtramck" uname
  567. ; USA?
  568. "Hackensack" uname "North Middleboro" uname "Fannettsburg" uname 
  569. "Corkscrew" uname "Boynton Beach" uname 
  570. "Belchertown" uname
  571. ; South America  
  572. "Huatabampo" uname "Zapotiltic" uname "Ipiranga" uname "Perseverancia" uname 
  573. "Bilwaskarma" uname "Aguadulce" uname
  574. "Albert Town" uname "Fuente de Oro" uname 
  575. "Pedras de Fogo" uname "Maxaranguape" uname "Comodoro Rivadavia" uname
  576. "Coribe" uname "Rossell y Rius" uname "General Alvear" uname
  577. "Ushaia" uname "Los Antiguos" uname "Puerto Alegre" uname "Quevedo" uname 
  578. ; Eastern Europe  
  579. "Kannonkoski" uname "Uusikaupunki" uname "Ulfborg" uname "Wloszczowa" uname 
  580. "Drohiczyn" uname "Vrchlabi" uname "Oroshaza" uname "Klagenfurt" uname 
  581. "Pisz" uname "Krokowa" uname "Partizanske" uname "Ozd" uname 
  582. "Jimbolia" uname "Peshkopi" uname "Galaxidhion" uname "Naxos" uname 
  583. ; Iceland
  584. "Thingvellir" uname "Honningsvag" uname "Vikna" uname "Jokkmokk" uname
  585. ; Scandinavia
  586. "Rimbo" uname "Kukkola" uname "Viitasaari" uname
  587. "Guderup" uname "Grindsted" uname "Store Andst" uname "Odder" uname 
  588. "Vrigstad" uname "Trollhaetten" uname "Kinsarvik" uname "Grimstad" uname 
  589. ; Ireland
  590. "Ballybunion" uname "Banagher" uname "Carncastle" uname
  591. ; Belgium
  592. "Lisp" uname "Knokke" uname "Bialy" uname "Bor" uname
  593. "Hel" uname "Puck" uname
  594. ; Germany
  595. "Diepholz" uname "Sangerhausen" uname "Biedenkopf" uname 
  596. "Mosbach" uname "Butzbach" uname "Goslar" uname "Studenka" uname
  597. "Slavonice" uname "Gouda" uname "Dokkum" uname "Oss" uname
  598. "Bad Bramstedt" uname "Dinkelsbuehl" uname "Hoogezand" uname 
  599. "Schoensee" uname "Fuerstenfeldbruck" uname 
  600. "Pfaffenhausen" uname "Namlos" uname "Bad Hall" uname
  601. "Consdorf" uname "Cloppenburg" uname "Bad Muskau" uname "Exing" uname
  602. ; France
  603. "Bois-d'Arcy" uname
  604. "Presles-en-Brie" uname "Silly-le-Long" uname "Saint-Witz" uname 
  605. "Limoux" uname "Crozon" uname "Guilvinec" uname "Poggibonsi" uname 
  606. "Pignans" uname "La Tour-du-Pin" uname "Roquefort" uname "Saint-Quentin" uname 
  607. ; Italy
  608. "Bobbio" uname "Viareggio" uname "Siderno" uname "Cortona" uname 
  609. ; Spain
  610. "Pedrogao Grande" uname "Villarcayo" uname "Alosno" uname "La Bisbal" uname 
  611. ; UK 
  612. "Cold Norton" uname "Potten End" uname "Battlesbridge" uname 
  613. "Fawkham Green" uname "Ysbyty Ystwyth" uname "Bletchley" uname
  614. "Llanbrynmair" uname "St Keverne" uname "Foxholes" uname 
  615. "Whitby" uname "Sutton-on-Sea" uname "Tweedmouth" uname "Wrexham" uname
  616. "Kirkwall" uname "Blair Atholl" uname "Inchbare" uname "Blackwaterfoot" uname 
  617. "Ramsgate" uname "Llantwit Major" uname "Minehead" uname "Buckfastleigh" uname 
  618. "Pocklington" uname "Robin Hood's Bay" uname "West Kilbride" uname
  619. "Inchnadamph" uname "North Tolsta" uname "Oykel Bridge" uname
  620. "Pangbourne" uname "Moreton-in-Marsh" uname "Wye" uname "Congresbury" uname
  621.  
  622. end
  623.